home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / sendmail / sendmail-5.65c+IDA-1.4.4.1 / src / version.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-04  |  1.8 KB  |  51 lines

  1. /*
  2.  * Copyright (c) 1983 Eric P. Allman
  3.  * Copyright (c) 1988 Regents of the University of California.
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms are permitted provided
  7.  * that: (1) source distributions retain this entire copyright notice and
  8.  * comment, and (2) distributions including binaries display the following
  9.  * acknowledgement:  ``This product includes software developed by the
  10.  * University of California, Berkeley and its contributors'' in the
  11.  * documentation or other materials provided with the distribution and in
  12.  * all advertising materials mentioning features or use of this software.
  13.  * Neither the name of the University nor the names of its contributors may
  14.  * be used to endorse or promote products derived from this software without
  15.  * specific prior written permission.
  16.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  17.  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  18.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  19.  */
  20.  
  21. #ifndef lint
  22. static char sccsid[] = "@(#)version.c    5.65 (Berkeley) 8/29/90";
  23. static char  rcsid[] = "@(#)$Id: version.c,v 5.64.0.6 1991/04/05 14:55:15 paul Exp $";
  24. #endif /* not lint */
  25.  
  26. #include "conf.h"
  27.  
  28. /*
  29.  * Strings that appear in header lines should be kept short.
  30.  *
  31.  * Current source version: 5.65c
  32.  * If Mail11v3 support is configured, append "+".
  33.  * If 8-bit character set support is configured, append "8".
  34.  * If you're right-handed and the temperature is above freezing, append xyzzy.
  35.  * But I digress.
  36.  */
  37.  
  38. #ifdef MAIL11V3
  39. # ifdef BIT8
  40. char    Version[] = "5.65c8+";
  41. # else /* !BIT8 */
  42. char    Version[] = "5.65c+";
  43. # endif /* BIT8 */
  44. #else /* !MAIL11V3 */
  45. # ifdef BIT8
  46. char    Version[] = "5.65c8";
  47. # else /* !BIT8 */
  48. char    Version[] = "5.65c";
  49. # endif /* BIT8 */
  50. #endif /* MAIL11V3 */
  51.